home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CPIXMAPP.H < prev    next >
Text File  |  1992-03-21  |  1KB  |  37 lines

  1. /******************************************************************************
  2.  CPixMapPane.h
  3.  
  4.         Interface for the PixMapPane Class
  5.         
  6.         Copyright ⌐ 1989 Symantec Corporation. All rights reserved.
  7.         
  8.  ******************************************************************************/
  9.  
  10. #define _H_CPixMapPane
  11.  
  12. #include "CPanorama.h"                    /* Interface for its superclass        */
  13. #include "CPixMap.h"
  14.  
  15. class CPixMapPane : public CPanorama {    /* Class Declaration                */
  16.  
  17. public:
  18.                                 /** Instance Variables **/
  19.     CPixMap        *itsPixMap;
  20.  
  21.                                 /** Instance Methods **/
  22.                                     /** Contruction/Destruction **/
  23.     void        IPixMapPane(CView *anEnclosure, CBureaucrat *aSupervisor,
  24.                             short aWidth, short aHeight,
  25.                             short aHEncl, short aVEncl,
  26.                             SizingOption aHSizing, SizingOption aVSizing,
  27.                             CPixMap *);
  28.     
  29.                                     /** Accessing **/
  30.     virtual void        SetPixMap(CPixMap *aPixMap);
  31.     virtual CPixMap*    GetPixMap(void);
  32.     
  33.                                     /** Drawing **/
  34.     virtual void        Draw(Rect *area);
  35.     
  36.     virtual PicHandle    GetPicHandle(void);
  37. };